home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 3989 / install.bat < prev    next >
Encoding:
DOS Batch File  |  1993-07-22  |  1.0 KB  |  33 lines

  1. @ECHO OFF
  2.  
  3. rem INSTALL C:
  4. rem Batch file to install College Funding Finder SHAREWARE
  5.  
  6. CLS
  7. echo ╔═══════════════════════════════════════════════════════════════════════════╗
  8. echo ║                           College Funding Finder                          ║
  9. echo ╚═══════════════════════════════════════════════════════════════════════════╝
  10.  
  11. IF %1!==! GOTO OOPS
  12.  
  13. ECHO                  Installation in process. One moment please . . .
  14. mkdir %1\CFF > NUL
  15. COPY CFFSHR.EXE %1\CFF > NUL
  16. %1
  17. chdir \CFF
  18. CFFSHR.EXE > NUL
  19. DEL CFFSHR.EXE > NUL
  20. ECHO                   College Funding Finder installation complete.
  21. ECHO                      Type CFF to run College Funding Finder.
  22. ECHO            If you are using DOS 6.0 with MEMMAKER installed you should
  23. ECHO         type CFF_DOS6 to run College Funding Finder, OR disable MEMMAKER.
  24. echo off
  25. GOTO END
  26.  
  27. :OOPS
  28. echo         You must specify a hard drive letter to install this program to.
  29. echo             FOR EXAMPLE: Type INSTALL C: to install to the C: drive.
  30. GOTO END
  31.  
  32. :END
  33.